home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 August / PC Plus SuperCD 50a Issue 142 (CD142a) (August 1998).iso / handson / supercede / Knowodys / Projects / Hello / 1.0.2 / HelloApplication.txt < prev    next >
Encoding:
Text File  |  1997-07-30  |  375 b   |  20 lines

  1. import java.io.*;
  2.  
  3. public class HelloApplication {
  4.  
  5.     public HelloApplication () {
  6.     }
  7.  
  8.     public static void main(String args[]) throws IOException{
  9.         System.out.println("\n Hello World\n");
  10.  
  11.     // these two lines hold the application window open until
  12.     // the user hits <enter>
  13.         System.in.read();
  14.         System.exit(0);
  15.     }
  16.  
  17. }
  18.  
  19.  
  20.